GetPossibleBreakpointsRequest

data class GetPossibleBreakpointsRequest(start: Location, end: Location?, restrictToFunction: Boolean?)

Represents request frame that can be used with Debugger#getPossibleBreakpoints operation call.

Returns possible locations for breakpoint. scriptId in start and end range locations should be the same.

See also

Constructors

GetPossibleBreakpointsRequest
Link copied to clipboard
fun GetPossibleBreakpointsRequest(start: Location, end: Location? = null, restrictToFunction: Boolean? = null)

Properties

end
Link copied to clipboard
val end: Location? = null
End of range to search possible breakpoint locations in (excluding).
restrictToFunction
Link copied to clipboard
val restrictToFunction: Boolean? = null
Only consider locations which are in the same (non-nested) function as start.
start
Link copied to clipboard
val start: Location
Start of range to search possible breakpoint locations in.

Sources

jvm source
Link copied to clipboard